body{
    font-family: consolas;
    background-color: rgb(157, 158, 158);
    font-size: 20px;
}
body h1{
    text-align: center;
}
#game-window{
    width: 1000px;
    height: 700px;
    background-color: rgb(0, 0, 0);
    margin: auto;
}
#game-notes{
    width: 600px;
    height: 250px;
    background-color: antiquewhite;
    margin: auto;
    margin-top: 25px;
    padding: 20px;
}
#game-notes p{
    margin: 10px;
}
#game-discription{
    margin: 25px;
    text-align: center;
}
.links {
    display: inline-block;
    margin: 20px auto;
    padding: 8px 24px;
    background: linear-gradient(to bottom, #e9e9e9 0%, #bcd6ee 100%);
    border: 2px solid #145399;
    border-radius: 0;
    color: #145399;
    font-family: Tahoma, Verdana, Segoe, sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 1px 1px 3px #0002;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-align: center;
}
.links:hover {
    background: linear-gradient(to bottom, #d0e4f7 0%, #a6c8e0 100%);
    color: #093c2d;
    border-color: #093c2d;
}
.link-center {
    display: flex;
    justify-content: center;
    width: 100%;
}